SVG Sprite
code:sprite.svg
<svg xmlns="..." xmlns:xlink="...">
<symbol id="hoge" viewBox="0 0 24 24" xmlns="...">
<defs>
<path ...></path>
</defs>
</symbol>
...
</svg>
みたいな感じの
SVG
を
code:html
<svg>
<use xlink:href="/sprite.svg#hoge" />
</svg>
みたいに呼び出すやつ